From 3f9562a9ca545d198a1f5873a8708275821fa832 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Sun, 18 Aug 2024 13:10:21 -0500 Subject: [PATCH] Fix sql textarea generated id --- src/pgwui_sql/views/sql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pgwui_sql/views/sql.py b/src/pgwui_sql/views/sql.py index e55733a..e66e8cf 100644 --- a/src/pgwui_sql/views/sql.py +++ b/src/pgwui_sql/views/sql.py @@ -45,7 +45,7 @@ class SQLWTForm(pgwui_core.forms.AuthWTForm): # We don't actually use the labels, wanting the template to # look (and render) like html, but I'll define them anyway # just to keep my hand in. - sql = TextAreaField('SQL:') + sql = TextAreaField('SQL:', id='sql_id') @attrs.define(slots=False) -- 2.34.1